d3032441680fe4e9bf10d162f92f2bde24caacd9,src/main/java/org/aksw/gerbil/tools/DatasetAnalyzer.java,DatasetAnalyzer,analyzeDataset,#DatasetConfiguration#,74

Before Change


            analyze(config, ExperimentType.D2KB);
        } else if (config.isApplicableForExperiment(ExperimentType.OKE_Task2)) {
            analyze(config, ExperimentType.OKE_Task2);
        } else if (config.isApplicableForExperiment(ExperimentType.C2KB)) {
            analyze(config, ExperimentType.C2KB);
        } else {
            LOGGER.error("Can not analyze the dataset with the following config: " + config.toString());

After Change


            analyze(config, ExperimentType.ETyping);
        } else if (config.isApplicableForExperiment(ExperimentType.OKE_Task2)) {
            analyze(config, ExperimentType.OKE_Task2);
        } else if (config.isApplicableForExperiment(ExperimentType.C2KB)) {
            analyze(config, ExperimentType.C2KB);
        } else if (config.isApplicableForExperiment(ExperimentType.ERec)) {
            analyze(config, ExperimentType.ERec);